/* =============================================
   PART REVIVE – Photo-driven stylesheet
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b4b;
  --blue: #1a237e;
  --blue-mid: #283593;
  --accent: #f0c040;
  --accent2: #4fc3f7;
  --cream: #f5f3ef;
  --cream2: #edeae4;
  --white: #ffffff;
  --dark-text: #1a1a2e;
  --body-text: #3d3d5c;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark-text); background: var(--cream); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav-header {
  position: sticky; top: 0; z-index: 100;
  background: #111827;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 86px; display: flex; align-items: center; gap: 24px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 72px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 24px; flex: 1; }
.nav-links a {
  font-family: var(--font-body); font-weight: 600; font-size: 0.88rem;
  color: rgba(255,255,255,0.75); transition: color 0.2s; white-space: nowrap;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent); color: var(--navy);
  border: none; padding: 10px 22px; border-radius: 4px;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  letter-spacing: 0.06em; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s, transform 0.15s; text-transform: uppercase;
}
.nav-cta:hover { background: #ffd600; transform: translateY(-1px); }

.hamburger { display: none; background: none; border: none; color: white; font-size: 1.6rem; cursor: pointer; margin-left: auto; }

.mobile-menu { display: none; flex-direction: column; background: #1a1a2e; padding: 16px 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-weight: 600; font-size: 0.95rem; }
.mobile-menu .mobile-cta { margin-top: 14px; background: var(--accent); color: var(--navy); text-align: center; padding: 14px; border-radius: 4px; font-weight: 800; font-family: var(--font-display); letter-spacing: 0.06em; border-bottom: none; text-transform: uppercase; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--accent); color: var(--navy);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.08em; padding: 16px 36px; border-radius: 6px;
  text-transform: uppercase; cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(240,192,64,0.4);
}
.btn-primary:hover { background: #ffd600; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(240,192,64,0.55); }
.btn-primary.sm { padding: 11px 24px; font-size: 0.95rem; }

.btn-dark {
  display: inline-block; background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.05em; padding: 14px 32px; border-radius: 6px;
  text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: var(--blue-mid); transform: translateY(-1px); }
.btn-dark.sm { padding: 10px 22px; font-size: 0.9rem; }

/* ===== HERO PHOTO ===== */
.hero-photo {
  display: block;
  width: 100%;
  line-height: 0;
  cursor: pointer;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-photo-cta { display: none; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-block; background: var(--navy); color: var(--accent);
  font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
  letter-spacing: 0.15em; padding: 6px 18px; border-radius: 3px; margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy);
  margin-bottom: 12px; line-height: 1.1;
}
.section-header p { color: var(--body-text); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ===== SPLIT ROWS ===== */
.split-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }

.split-photo img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  object-fit: cover;
}
.split-text h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem); color: var(--navy);
  line-height: 1.15; margin-bottom: 14px;
}
.split-text p { color: var(--body-text); margin-bottom: 12px; line-height: 1.75; }
.callout-line { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.bold-accent { font-weight: 700; color: var(--navy); }
.italic-tag { font-style: italic; color: var(--body-text); margin-bottom: 16px; font-size: 0.95rem; }

.stars-row { color: #f0c040; font-size: 1.1rem; margin-bottom: 6px; }
.stars-row span { color: var(--body-text); font-size: 0.9rem; font-weight: 600; }
.stars-row.large { font-size: 1.5rem; margin-bottom: 28px; }

.check-list { list-style: none; margin: 10px 0 16px; }
.check-list li {
  padding: 5px 0 5px 24px; position: relative;
  color: var(--body-text); font-weight: 500;
}
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 900; }

.tag-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 18px; }
.tag-pills span {
  background: var(--navy); color: white;
  padding: 5px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--cream); padding: 40px 0 80px; }

/* ===== AD STRIP ===== */
.ad-strip { background: #111827; padding: 40px 0; }
.ad-link { display: block; line-height: 0; border-radius: 10px; overflow: hidden; transition: opacity 0.2s, transform 0.2s; }
.ad-link:hover { opacity: 0.92; transform: scale(1.005); }
.ad-img { width: 100%; border-radius: 10px; box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.ad-cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 20px; flex-wrap: wrap;
}
.ad-cta-bar span { color: rgba(255,255,255,0.85); font-size: 1.05rem; font-weight: 600; }

/* ===== STOP LOSING ===== */
.stop-losing { background: var(--cream2); padding: 80px 0; }

.process-visual {
  background: var(--navy); border-radius: 14px; padding: 36px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 8px 40px rgba(13,27,75,0.25);
}
.pv-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; }
.pv-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.1rem;
  flex-shrink: 0;
}
.pv-text { color: rgba(255,255,255,0.9); line-height: 1.5; font-size: 0.95rem; }
.pv-text strong { color: white; font-size: 1rem; display: block; margin-bottom: 2px; }
.highlight-step .pv-num { background: var(--accent2); }
.highlight-step .pv-text strong { color: var(--accent2); }
.pv-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0 0 0 52px; }

/* ===== FEATURE ROWS ===== */
.feature-rows { background: var(--cream); padding: 80px 0; }
.feat-row {
  display: grid; grid-template-columns: 480px 1fr; gap: 56px;
  align-items: center; padding-bottom: 64px; margin-bottom: 64px;
  border-bottom: 1px solid rgba(13,27,75,0.1);
}
.feat-row:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.feat-row.reverse { grid-template-columns: 1fr 480px; }
.feat-row.reverse .feat-photo-wrap { order: 2; }
.feat-row.reverse .feat-body { order: 1; }

.feat-photo-wrap { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 32px rgba(0,0,0,0.2); }
.feat-photo-wrap img { width: 100%; height: auto; max-height: 520px; object-fit: cover; object-position: center top; display: block; }
.feat-photo-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,27,75,0.88); color: white;
  font-weight: 700; font-size: 0.9rem; padding: 12px 18px;
  text-align: center; backdrop-filter: blur(4px);
}

.feat-body h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem); color: var(--navy);
  margin-bottom: 10px; line-height: 1.15;
}
.feat-sub { font-weight: 700; color: var(--blue-mid); margin-bottom: 10px; font-size: 1rem; }
.feat-body p { color: var(--body-text); margin-bottom: 12px; line-height: 1.75; }

/* ===== TRUST BAND ===== */
.trust-band { background: var(--cream2); padding: 80px 24px; text-align: center; }
.trust-band h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 12px;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto; text-align: left;
}
.trust-item {
  background: var(--white); border-radius: 10px; padding: 18px 22px;
  font-weight: 600; color: var(--navy); border-left: 4px solid var(--accent);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); font-size: 0.97rem;
}

/* ===== PROVEN BAND ===== */
.proven-band {
  background: linear-gradient(135deg, #0d1b4b 0%, #1a237e 60%, #1565c0 100%);
  padding: 80px 24px;
}
.proven-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.proven-text h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--accent);
  line-height: 1.1; margin-bottom: 20px;
}
.proven-text p { color: rgba(255,255,255,0.88); margin-bottom: 14px; line-height: 1.75; font-size: 1rem; }
.bold-accent-light { font-weight: 700; color: var(--accent2) !important; }
.proven-steps {
  list-style: none; margin: 12px 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.proven-steps li {
  padding: 10px 16px; background: rgba(255,255,255,0.08);
  border-radius: 6px; border-left: 3px solid var(--accent);
  font-weight: 600; font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.03em; color: white;
}
.proven-ready {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.4rem; color: white !important;
  letter-spacing: 0.04em; margin-bottom: 20px !important;
}
.proven-photo img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  object-fit: cover;
}

/* ===== FAQ ===== */
.faq { background: var(--cream); padding: 80px 24px; }
.faq h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.4rem; color: var(--navy); margin-bottom: 40px; text-align: center;
}
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item { border-radius: 8px; overflow: hidden; border: 1px solid rgba(13,27,75,0.1); }
.faq-q {
  width: 100%; background: var(--white); border: none; padding: 18px 24px;
  text-align: left; font-family: var(--font-body); font-size: 1rem;
  font-weight: 600; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.faq-q:hover { background: #f0f0f8; }
.faq-item.open .faq-q { background: var(--navy); color: white; }
.faq-q span { font-size: 1.3rem; font-weight: 400; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  background: #f8f8ff; padding: 0 24px; color: var(--body-text);
  line-height: 1.75; font-size: 0.95rem;
}
.faq-item.open .faq-a { padding: 18px 24px 22px; }

/* ===== FOOTER CTA ===== */
.footer-cta { background: var(--accent); padding: 64px 24px; text-align: center; }
.footer-logo { height: 70px; width: auto; margin: 0 auto 24px; object-fit: contain; }
.footer-cta h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 2.4rem; color: var(--navy); margin-bottom: 12px;
}
.footer-cta p { font-size: 1.1rem; color: var(--navy); margin-bottom: 28px; }
.footer-cta a { font-weight: 700; }
.footer-cta .btn-primary { background: var(--navy); color: white; box-shadow: 0 4px 20px rgba(13,27,75,0.3); }
.footer-cta .btn-primary:hover { background: var(--blue-mid); }

/* ===== SITE FOOTER ===== */
.site-footer { background: #111827; padding: 24px; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-inner nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-inner nav a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-inner nav a:hover { color: var(--accent); }
.footer-inner a { color: rgba(255,255,255,0.6); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #111827 0%, var(--blue) 100%);
  padding: 60px 24px; text-align: center; color: white;
  border-bottom: 4px solid var(--accent);
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem); color: var(--accent); margin-bottom: 14px;
}
.page-hero p { opacity: 0.85; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== PROJECTS PAGE ===== */
.projects-section { background: var(--cream); padding: 60px 24px; }
.projects-intro { max-width: 780px; margin: 0 auto 48px; text-align: center; color: var(--body-text); line-height: 1.8; }
.projects-intro p { margin-bottom: 12px; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto 48px; }
.project-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.09); border: 1px solid rgba(13,27,75,0.07); transition: transform 0.2s, box-shadow 0.2s; }
.project-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,27,75,0.15); }
.project-thumb { height: 200px; overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; }
.project-thumb-bg { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.project-thumb-bg.gears { background: linear-gradient(135deg, #6d4c41, #8d6e63); }
.project-thumb-bg.belts { background: linear-gradient(135deg, #37474f, #546e7a); }
.project-thumb-bg.bathtub { background: linear-gradient(135deg, #1a237e, #283593); }
.project-card-body { padding: 20px; }
.project-card-body h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.project-card-body p { color: var(--body-text); font-size: 0.9rem; line-height: 1.6; }

.process-story { background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; border-radius: 16px; padding: 48px; max-width: 780px; margin: 0 auto 40px; text-align: center; }
.process-story h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; color: var(--accent); margin-bottom: 18px; }
.process-story p { opacity: 0.9; margin-bottom: 12px; line-height: 1.75; }
.step-row { display: flex; justify-content: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.step-box { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 12px 20px; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.05em; color: var(--accent2); }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--cream); padding: 60px 24px; }
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact-steps { background: var(--white); border-radius: 12px; padding: 36px; margin-bottom: 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.contact-steps h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy); margin-bottom: 22px; }
.step-line { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.step-num { background: var(--navy); color: var(--accent); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.step-detail { color: var(--body-text); line-height: 1.6; }
.step-detail strong { color: var(--navy); }
.contact-direct { text-align: center; margin-bottom: 28px; color: var(--body-text); font-size: 1rem; }
.contact-direct a { color: var(--blue); font-weight: 700; }
.contact-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.contact-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 20px; border-radius: 8px; font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: 0.04em; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s; text-align: center; text-transform: uppercase; }
.contact-btn:hover { transform: translateY(-2px); }
.contact-btn.email-btn { background: var(--navy); color: white; box-shadow: 0 4px 16px rgba(13,27,75,0.2); }
.contact-btn.upload-btn { background: var(--accent); color: var(--navy); box-shadow: 0 4px 16px rgba(240,192,64,0.3); }
.inline-form { background: var(--white); border-radius: 12px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.inline-form h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(13,27,75,0.2); border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem; color: var(--dark-text); background: var(--cream); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; background: var(--accent); color: var(--navy); border: none; padding: 16px; border-radius: 6px; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.form-submit:hover { background: #ffd600; transform: translateY(-1px); }

/* ===== ABOUT PAGE ===== */
.about-section { background: var(--cream); padding: 60px 24px; }
.about-inner { max-width: 840px; margin: 0 auto; }
.about-inner h2 { font-family: var(--font-display); font-weight: 900; font-size: 2.2rem; color: var(--navy); margin: 44px 0 16px; }
.about-inner h2:first-child { margin-top: 0; }
.about-inner p { color: var(--body-text); line-height: 1.8; margin-bottom: 14px; }
.about-inner blockquote { background: var(--cream2); border-left: 4px solid var(--accent); border-radius: 0 8px 8px 0; padding: 18px 26px; margin: 20px 0; font-style: italic; color: var(--body-text); font-size: 1.05rem; }
.commitment-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.commitment-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }
.commitment-list li::before { content: '✓'; color: var(--accent); font-weight: 900; font-size: 1.1rem; }
.about-mission { background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; border-radius: 16px; padding: 52px 48px; margin: 40px 0; text-align: center; }
.about-mission h3 { font-family: var(--font-display); font-weight: 900; font-size: 2.2rem; color: var(--accent); margin-bottom: 18px; }
.about-mission p { opacity: 0.9; line-height: 1.75; max-width: 560px; margin: 0 auto 12px; }
.about-mission .mission-statement { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent2); margin-top: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .feat-row, .feat-row.reverse { grid-template-columns: 1fr; }
  .feat-row.reverse .feat-photo-wrap, .feat-row.reverse .feat-body { order: unset; }
  .feat-photo-wrap img { height: auto; max-height: 400px; }
  .proven-inner { grid-template-columns: 1fr; }
  .proven-photo { display: none; }
}

@media (max-width: 768px) {
  .nav-inner { height: 70px; }
  .nav-logo { height: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; font-size: 2rem; padding: 8px 12px; z-index: 200; position: relative; }
  .mobile-menu { z-index: 199; position: relative; }
  .split-row, .split-row.reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .contact-btns { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-inner nav { justify-content: center; }
  .ad-cta-bar { flex-direction: column; text-align: center; }
  .about-mission { padding: 36px 24px; }
  .services-section { padding: 24px 0 60px; }
  .section-header { margin-bottom: 32px; }
}
