/* ============================================================
   BVM Pro — Coffee Brown / Warm Cream theme
   Light theme, solid colors only, strong contrast throughout.
   ============================================================ */

:root {
  --coffee: #78350F;
  --coffee-deep: #5C280A;
  --coffee-bright: #B45309;
  --coffee-soft: #92400E;
  --cream: #F8F4EE;
  --cream-deep: #EFE7DA;
  --cream-card: #FFFFFF;
  --ink: #241F17;
  --ink-soft: #4A4032;
  --ink-mute: #6E6252;
  --line: #E4DACA;
  --good: #1F7A44;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Archivo", "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--coffee);
  text-decoration: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 700;
}

/* ---------- TOOLBAR NAVIGATION ---------- */
.toolbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--cream);
  border-bottom: 1px solid var(--line);
}

.toolbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  background-color: var(--coffee);
  border-radius: 7px;
  display: inline-block;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  background-color: var(--cream);
  border-radius: 3px;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-text strong {
  color: var(--coffee);
  font-weight: 800;
}

.toolbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: var(--cream-card);
  transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.tool-btn:hover {
  color: var(--coffee);
  border-color: var(--coffee-bright);
  background-color: #FBF6EF;
}

.tool-ico {
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: var(--coffee-bright);
  flex-shrink: 0;
}

.ico-square { border-radius: 1px; }
.ico-circle { border-radius: 50%; }
.ico-triangle { width: 0; height: 0; background: none; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 8px solid var(--coffee-bright); }
.ico-diamond { transform: rotate(45deg); border-radius: 1px; }
.ico-bar { width: 8px; height: 3px; border-radius: 2px; }

.toolbar-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: var(--coffee);
  border-radius: 9px;
  transition: background-color 0.18s ease;
}

.toolbar-cta:hover {
  background-color: var(--coffee-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--ink);
  display: block;
}

/* ---------- HERO + TOOL SILHOUETTES ---------- */
.hero-section {
  background-color: var(--cream);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coffee-bright);
  background-color: #F3E7D3;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--coffee);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--coffee-deep);
}

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--coffee-bright);
  color: var(--coffee);
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--coffee);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--ink-mute);
  font-weight: 500;
}

/* Tool silhouettes */
.tool-wall {
  display: flex;
  justify-content: center;
}

.pegboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background-color: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 430px;
}

.tool {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hammer */
.tool-hammer .t-head {
  position: absolute;
  top: 34px;
  left: 50%;
  width: 88px;
  height: 20px;
  background-color: var(--coffee);
  border-radius: 5px;
  transform: translateX(-50%);
}

.tool-hammer .t-head::before,
.tool-hammer .t-head::after {
  content: "";
  position: absolute;
  top: -14px;
  width: 16px;
  height: 14px;
  background-color: var(--coffee-bright);
  border-radius: 3px 3px 0 0;
}

.tool-hammer .t-head::before { left: 4px; }
.tool-hammer .t-head::after { right: 4px; }

.tool-hammer .t-handle {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 14px;
  height: 72px;
  background-color: var(--coffee-soft);
  border-radius: 6px;
  transform: translateX(-50%);
}

/* Wrench */
.tool-wrench .t-open {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 44px;
  height: 44px;
  border: 12px solid var(--coffee);
  border-radius: 50%;
  transform: translateX(-50%);
}

.tool-wrench .t-shaft {
  position: absolute;
  top: 66px;
  left: 50%;
  width: 14px;
  height: 66px;
  background-color: var(--coffee-bright);
  border-radius: 6px;
  transform: translateX(-50%);
}

/* Screwdriver */
.tool-screwdriver .t-grip {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 40px;
  height: 56px;
  background-color: var(--coffee);
  border-radius: 8px;
  transform: translateX(-50%);
}

.tool-screwdriver .t-blade {
  position: absolute;
  top: 86px;
  left: 50%;
  width: 9px;
  height: 50px;
  background-color: var(--coffee-bright);
  border-radius: 0 0 4px 4px;
  transform: translateX(-50%);
}

/* Level */
.tool-level .t-body {
  position: absolute;
  top: 66px;
  left: 50%;
  width: 110px;
  height: 22px;
  background-color: var(--coffee);
  border-radius: 5px;
  transform: translateX(-50%);
}

.tool-level .t-bubble {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 12px;
  height: 10px;
  background-color: var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* ---------- STATEMENT ---------- */
.statement-section {
  background-color: var(--coffee);
  color: var(--cream);
}

.statement-section .container {
  padding: 84px 24px;
  max-width: 900px;
}

.statement-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8C89A;
  margin-bottom: 16px;
}

.statement-title {
  color: #FFFFFF;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.statement-text {
  font-size: 1.05rem;
  color: #F1E6D6;
  max-width: 780px;
}

/* ---------- SECTION HEAD SHARED ---------- */
.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coffee-bright);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--ink-mute);
  font-size: 1.02rem;
}

/* ---------- METHOD ---------- */
.method-section {
  background-color: var(--cream);
  padding: 84px 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.method-item {
  background-color: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
}

.method-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--coffee);
  line-height: 1;
  margin-bottom: 18px;
}

.method-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.method-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- SERVICES ---------- */
.services-section {
  background-color: var(--cream-deep);
  padding: 84px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-big {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--coffee);
  line-height: 1;
}

.service-card h3 {
  font-size: 1.25rem;
}

.service-card p {
  color: var(--ink-soft);
}

/* ---------- COMPARE TABLE ---------- */
.compare-section {
  background-color: var(--cream);
  padding: 84px 0;
}

.compare-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.compare-row > span {
  padding: 18px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child > span {
  border-bottom: none;
}

.compare-head > span {
  font-weight: 700;
  background-color: var(--cream-deep);
  color: var(--ink);
}

.compare-label {
  font-weight: 600;
  color: var(--ink);
  background-color: #FBF6EF;
}

.compare-us {
  background-color: #F6ECDD;
  color: var(--coffee-deep);
  font-weight: 600;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-section {
  background-color: var(--cream-deep);
  padding: 84px 0;
}

.quote-slider {
  position: relative;
  background-color: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 40px 60px;
  min-height: 220px;
}

.quote-slide {
  display: none;
}

.quote-slide.active {
  display: block;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.quote-author {
  color: var(--coffee-bright);
  font-weight: 600;
  font-size: 0.9rem;
}

.quote-controls {
  position: absolute;
  bottom: 24px;
  left: 40px;
  display: flex;
  gap: 10px;
}

.quote-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--coffee);
  background-color: transparent;
  cursor: pointer;
}

.quote-dot.active {
  background-color: var(--coffee);
}

/* ---------- FAQ ---------- */
.faq-section {
  background-color: var(--cream);
  padding: 84px 0;
}

.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background-color: var(--cream-card);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--coffee-bright);
  line-height: 1;
}

.faq-item.open .faq-q::after {
  content: "\2212";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 26px 22px;
  color: var(--ink-soft);
}

/* ---------- CONTACT ---------- */
.contact-section {
  background-color: var(--cream-deep);
  padding: 84px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coffee-bright);
}

.contact-value {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 600;
}

.contact-form {
  background-color: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background-color: #FDFBF7;
  color: var(--ink);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--coffee-bright);
  border-color: var(--coffee-bright);
}

.form-note {
  font-size: 0.9rem;
  color: var(--good);
  font-weight: 600;
  min-height: 1.2em;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background-color: var(--ink);
  color: #E8DFD2;
}

.footer-newsletter {
  background-color: var(--coffee);
  padding: 44px 0;
}

.newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.newsletter-title {
  color: #FFFFFF;
  font-size: 1.3rem;
  font-weight: 800;
}

.newsletter-sub {
  color: #F1E6D6;
  font-size: 0.95rem;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 440px;
}

.newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background-color: #FFFFFF;
  color: var(--ink);
}

.newsletter-form .btn-primary {
  background-color: var(--ink);
  color: #FFFFFF;
}

.newsletter-form .btn-primary:hover {
  background-color: #120D07;
}

.footer-main {
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 32px;
}

.footer-brand .brand-mark {
  margin-bottom: 16px;
}

.footer-brand-text {
  color: #C9BCA8;
  font-size: 0.95rem;
  max-width: 260px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.footer-col a,
.footer-address {
  color: #C9BCA8;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-address {
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid #3A332A;
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #9C907C;
}

/* ---------- FADE-UP REVEAL ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 56px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .toolbar-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background-color: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 20px;
    display: none;
  }

  .toolbar-nav.open {
    display: flex;
  }

  .tool-btn {
    justify-content: flex-start;
    padding: 12px 16px;
  }

  .toolbar-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > span {
    border-bottom: 1px solid var(--line);
  }

  .compare-head {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
}
