* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 140px;
  padding: 10px 0;
}

/* LOGO — BIG + DOMINANT */
.site-logo {
  height: 140px; /* THIS IS YOUR 3X SIZE */
  width: auto;
  display: block;
}

/* NAV */

.site-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav a {
  font-weight: 600;
  font-size: 15px;
}

/* CTA */

.nav-cta {
  padding: 10px 16px;
  background: #111;
  color: #fff;
  border-radius: 4px;
}

/* MOBILE MENU BUTTON */

.nav-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================
   HERO DEFAULT
========================= */

.hero {
  padding: 80px 0;
  background: #f5f5f5;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #111;
  color: #fff;
  margin-top: 60px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .header-wrap {
    flex-wrap: wrap;
    min-height: auto;
  }

  .site-logo {
    height: 90px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    padding-top: 20px;
    gap: 14px;
  }

}/* =========================
   FIXED HEADER + LOGO BOOST
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 160px; /* more space */
  padding: 10px 0;
}

/* BIGGER LOGO */
.site-logo {
  height: 160px; /* increased again */
  width: auto;
}

/* =========================
   FOOTER RESTORE
========================= */

.site-footer {
  background: #111;
  color: #fff;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 48px 0 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 20px 0;
  font-size: 14px;
}

/* =========================
   MOBILE FIXES
========================= */

@media (max-width: 900px) {

  .site-logo {
    height: 100px; /* still big but controlled */
  }

  .header-wrap {
    min-height: auto;
  }

}/* =========================
   AUTHORITY HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #ececec;
  backdrop-filter: blur(8px);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 172px;
  padding: 14px 0;
}

.header-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  display: block;
  height: 184px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex: 1 1 auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover {
  color: #000;
  opacity: 0.82;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: #000;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1180px) {
  .header-wrap {
    min-height: 150px;
    gap: 20px;
  }

  .site-logo {
    height: 160px;
  }

  .header-right {
    gap: 18px;
  }

  .site-nav ul {
    gap: 14px;
  }

  .site-nav a {
    font-size: 13px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .header-wrap {
    flex-wrap: wrap;
    min-height: auto;
    gap: 14px;
    padding: 12px 0;
  }

  .header-brand {
    flex: 1 1 auto;
  }

  .site-logo {
    height: 124px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-right {
    display: block;
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 8px;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .site-nav a {
    font-size: 16px;
  }
}/* =========================
   SECTION: WHAT WE BUY
========================= */

.section-what-we-buy {
  padding: 70px 0;
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.content-left h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.content-left p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
}

.what-we-buy-list {
  margin-top: 20px;
  padding-left: 18px;
}

.what-we-buy-list li {
  margin-bottom: 8px;
}

/* TRUST CARD */

.trust-card {
  background: #f7f7f7;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.trust-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.trust-card ul {
  list-style: none;
  padding: 0;
}

.trust-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.trust-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #111;
  font-weight: bold;
}

/* LOCAL SEO TEXT */

.local-seo {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.local-seo p {
  font-size: 15px;
  color: #444;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .two-col {
    grid-template-columns: 1fr;
  }

  .content-left h2 {
    font-size: 26px;
  }

  .trust-card {
    margin-top: 20px;
  }

}