/* =========================================
   SUMMIT OPERATIONS — THEME STYLES
   Professional contractor web services
   ========================================= */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EEE9;
  --fg: #2C2C2C;
  --fg-secondary: #6B6B6B;
  --accent: #2D5A47;
  --accent-light: #3D7A5F;
  --accent-subtle: #E8F0EC;
  --warm-gray: #E8E2DA;
  --border: #DDD8D0;
  --white: #FFFFFF;
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: white;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-light); }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.2s;
}

/* HERO */
.hero {
  padding: 96px 32px 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-overline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-secondary);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover { background: var(--accent-light); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--fg-secondary); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: 13px;
  color: var(--fg-secondary);
  font-weight: 500;
}
.trust-sep { color: var(--border); }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.hero-card-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card-stat {
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--border);
}
.card-stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-image-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stack-img {
  border-radius: 10px;
  height: 90px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stack-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-subtle) 0%, var(--warm-gray) 100%);
  opacity: 0.5;
}
.stack-img-1 { background: var(--accent-subtle); }
.stack-img-2 { background: #E8EEE9; }
.stack-img-3 { background: var(--warm-gray); }

/* SECTIONS */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-header {
  margin-bottom: 56px;
}
.section-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-secondary);
  max-width: 560px;
  line-height: 1.65;
}

/* SERVICES */
.services {
  padding: 96px 32px;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.25s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(45, 90, 71, 0.1);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 96px 32px;
  background: var(--bg);
}
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.process-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.process-step:first-child { border-radius: 12px 0 0 12px; }
.process-step:last-child { border-radius: 0 12px 12px 0; }
.step-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-subtle);
  line-height: 1;
  min-width: 40px;
}
.step-content { flex: 1; }
.step-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.6;
}
.step-visual { flex-shrink: 0; }
.step-icon-box {
  width: 56px;
  height: 56px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.process-connector {
  width: 32px;
  flex-shrink: 0;
  background: var(--bg);
  border-top: 1.5px dashed var(--border);
  border-bottom: 1.5px dashed var(--border);
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
}

/* INDUSTRIES */
.industries {
  padding: 96px 32px;
  background: var(--white);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s;
}
.industry-card:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}
.industry-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1.5px solid var(--border);
}
.industry-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}

/* DIFFERENCE */
.difference {
  padding: 96px 32px;
  background: var(--accent);
  color: white;
}
.diff-content { margin-bottom: 48px; }
.diff-content .section-overline { color: rgba(255,255,255,0.6); }
.diff-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.diff-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.65;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.diff-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
}
.diff-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.diff-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* TESTIMONIALS */
.testimonials {
  padding: 96px 32px;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--accent);
}
.testimonial-text {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-serif);
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.author-role {
  font-size: 12px;
  color: var(--fg-secondary);
}

/* CTA */
.cta-section {
  padding: 96px 32px;
  background: var(--white);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 16px;
  color: var(--fg-secondary);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.cta-actions { margin-bottom: 20px; }
.btn-cta {
  background: var(--fg);
  color: white;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
}
.btn-cta:hover { background: #1a1a1a; }
.cta-info {
  font-size: 14px;
  color: var(--fg-secondary);
}
.cta-email {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}
.cta-email:hover { text-decoration: underline; }
.cta-decoration {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-block {
  padding: 20px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}
.cta-stat {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2px;
}
.cta-stat-label {
  font-size: 12px;
  color: var(--fg-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* FOOTER */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.7);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo .logo-mark {
  background: rgba(255,255,255,0.1);
}
.footer-logo .logo-text {
  color: white;
  font-family: var(--font-serif);
  font-size: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--accent);
  color: white;
}
.footer-heading {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-link:hover { color: white; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.contact-item a:hover { color: white; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 16px; }
  .process-step:first-child { border-radius: 12px; }
  .process-step:last-child { border-radius: 12px; }
  .process-connector { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-decoration { flex-direction: row; }
  .cta-block { flex: 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 64px 24px 48px; }
  .services, .how-it-works, .industries, .difference, .testimonials, .cta-section { padding: 64px 24px; }
  .section-inner { padding: 0 24px; }
  .hero-inner { padding: 0 24px; max-width: 100%; }
  .hero-headline { font-size: 34px; }
}