@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
  --blue: #185b7a !important;
  --gold: #d89a32 !important;
  --red: #d64e38 !important;
  --green: #2c7a5b !important;
  --white: #fffdf9 !important;
  --dark: #12232b !important;
  --gray: #f2f0ea !important;
  --ink: #17242a;
  --muted-ink: #617078;
  --line: #d7ddd9;
  --paper: #fffdf9;
}

* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  color: var(--ink) !important;
  background: var(--paper) !important;
  font-family: "DM Sans", sans-serif !important;
}

nav {
  min-height: 76px;
  padding: 0 max(20px, calc((100vw - 1180px)/2)) !important;
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: rgba(18,35,43,.96) !important;
  box-shadow: none !important;
}
.nav-brand-text {
  font: 800 1rem "Manrope", sans-serif !important;
  letter-spacing: -.02em;
}
.nav-brand-text span { color: #f3b34b !important; }
.nav-link, .nav-phone {
  font-family: "DM Sans", sans-serif !important;
  font-weight: 600 !important;
}
.nav-cta {
  border-radius: 2px !important;
  background: #d64e38 !important;
  box-shadow: none !important;
  font-family: "DM Sans", sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.hero {
  min-height: 700px !important;
  padding: 130px 24px 80px !important;
  background: #12232b !important;
  text-align: left !important;
}
.hero::before {
  content: "" !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.045) 50%, transparent 50.1%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px) !important;
  background-size: 100% 100%, 100% 54px !important;
  transform: none !important;
}
.hero-inner {
  width: min(1180px, 100%) !important;
  max-width: 900px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 2.5rem !important;
  text-align: center !important;
}
.hero-logo { order: 0; flex: none !important; }
.hero-logo img {
  width: 180px !important;
  padding: 12px !important;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2px !important;
  box-shadow: 12px 12px 0 rgba(216,154,50,.14);
}
.hero-content { max-width: 900px; text-align: center !important; }
.hero-badge {
  padding: 0 !important;
  border-radius: 0 !important;
  color: #f3b34b !important;
  background: none !important;
  font: 700 .72rem "DM Sans", sans-serif !important;
  letter-spacing: .12em !important;
}
.hero h1 {
  max-width: 720px;
  margin-bottom: 1.4rem !important;
  color: #fffdf9 !important;
  font: 800 clamp(3rem, 6vw, 5.6rem)/.98 "Manrope", sans-serif !important;
  letter-spacing: -.055em;
}
.hero h1 span { color: #f3b34b !important; }
.hero p {
  max-width: 640px;
  margin-inline: auto !important;
  color: rgba(255,255,255,.68) !important;
  font-size: 1.06rem !important;
}
.hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px !important; }
.btn-primary, .btn-outline, .item-buy {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d64e38 !important;
  border-radius: 2px !important;
  color: #fff !important;
  background: #d64e38 !important;
  box-shadow: none !important;
  font: 700 .85rem "DM Sans", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.btn-outline {
  border-color: rgba(255,255,255,.35) !important;
  background: transparent !important;
}
.btn-primary:hover, .btn-outline:hover, .item-buy:hover { transform: translateY(-2px); box-shadow: none !important; }

.services, .areas, .faq {
  width: 100% !important;
  max-width: none !important;
  padding: 7rem max(20px, calc((100vw - 1180px) / 2)) !important;
}
.section-header {
  max-width: 720px !important;
  margin: 0 auto 2.8rem !important;
  text-align: center !important;
}
.section-label {
  color: #185b7a !important;
  font: 700 .7rem "DM Sans", sans-serif !important;
  letter-spacing: .14em !important;
}
.section-header h2, .contact h2, .howto h2 {
  color: var(--ink) !important;
  font: 800 clamp(2.2rem, 4.5vw, 4rem)/1.05 "Manrope", sans-serif !important;
  letter-spacing: -.045em;
}
.services-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  border: 1px solid var(--line);
  background: var(--line);
}
.service-card {
  min-height: 260px;
  padding: 1.5rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--paper) !important;
  box-shadow: none !important;
  transform: none !important;
}
.service-card:hover { background: #f7f5ef !important; transform: translateY(-3px) !important; box-shadow: none !important; }
.service-icon {
  width: 42px !important;
  height: 42px !important;
  margin-bottom: 2rem !important;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px !important;
  background: #f2f0ea;
  filter: grayscale(1);
  font-size: 1rem !important;
}
.service-card h3 { color: var(--ink) !important; font: 700 1.08rem "Manrope", sans-serif !important; }
.service-card p { color: var(--muted-ink) !important; font-size: .88rem !important; }

.why {
  padding: 6rem 20px !important;
  background: #185b7a !important;
}
.why .section-label { color: #f3b34b !important; }
.why .section-header h2 { color: #fffdf9 !important; }
.why-grid { max-width: 1180px !important; border: 1px solid rgba(255,255,255,.22); }
.why-item { border-radius: 0 !important; border-right: 1px solid rgba(255,255,255,.18); background: transparent !important; }
.why-item:last-child { border-right: 0; }
.why-item h3 { color: #fff !important; font-family: "Manrope", sans-serif !important; text-shadow: none !important; }
.why-item p { color: rgba(255,255,255,.7) !important; }

.areas { background: var(--paper) !important; }
.areas-list { justify-content: center !important; gap: 8px !important; }
.area-tag {
  border: 1px solid var(--line) !important;
  border-radius: 2px !important;
  color: #34464e !important;
  background: #f2f0ea !important;
  box-shadow: none !important;
}

.faq { background: #f2f0ea !important; }
.faq-list { max-width: 900px !important; margin-inline: auto !important; }
.faq-item {
  border: 0 !important;
  border-bottom: 1px solid #ccd4d0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.faq-item h3 { color: var(--ink) !important; font-family: "Manrope", sans-serif !important; }
.faq-item p { color: var(--muted-ink) !important; }

.contact {
  padding: 7rem 20px !important;
  background: #12232b !important;
}
.contact-inner { max-width: 1180px !important; }
.contact .section-label { color: #f3b34b !important; }
.contact h2 { color: #fffdf9 !important; }
.contact-inner > p { color: rgba(255,255,255,.68) !important; }
.contact-cards {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1px !important;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.18);
}
.contact-card {
  border: 0 !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,.72) !important;
  background: #172d37 !important;
  box-shadow: none !important;
}
.contact-card:hover { background: #1d3742 !important; transform: none !important; }
.contact-card .icon { filter: grayscale(1); font-size: 1.2rem !important; }
.contact-card .label { color: #f3b34b !important; }
.contact-card .value { color: #fff !important; }

footer { border-color: #263b45 !important; background: #0d1d24 !important; }

.shop-hero {
  padding: 140px 24px 70px !important;
  background: #185b7a !important;
}
.shop-hero .badge {
  padding: 0 !important;
  border-radius: 0 !important;
  color: #f7c56c !important;
  background: none !important;
}
.shop-hero h1 { font: 800 clamp(2.8rem, 6vw, 5rem)/1 "Manrope", sans-serif !important; letter-spacing: -.05em; }
.shop-hero h1 span { color: #fff !important; text-shadow: none !important; }
.updated-bar { top: 76px !important; border-color: var(--line) !important; background: #f2f0ea !important; }
.grading, .item-card {
  border: 1px solid var(--line) !important;
  border-radius: 2px !important;
  background: var(--paper) !important;
  box-shadow: none !important;
}
.item-card:hover { transform: translateY(-3px) !important; box-shadow: none !important; }
.clearance-tag { border-radius: 2px !important; transform: none !important; box-shadow: none !important; }
.clearance-tag::before { content: "" !important; }
.search-box { border: 1px solid #aab7b2 !important; border-radius: 2px !important; font-family: "DM Sans", sans-serif !important; }
.cat-title, .item-name { font-family: "Manrope", sans-serif !important; }
.cat-title { border-color: #185b7a !important; }
.item-price { color: #185b7a !important; }
.howto { background: #12232b !important; }

body > .wrap {
  max-width: 860px !important;
  padding: 5rem 20px !important;
}
body > .wrap h1 { font: 800 clamp(2.8rem, 7vw, 4.8rem)/1 "Manrope", sans-serif !important; letter-spacing: -.05em; }
body > .wrap h2 { color: #185b7a !important; font-family: "Manrope", sans-serif !important; }
body > .wrap p, body > .wrap li { color: #52636b !important; }
.contact-box { border: 1px solid var(--line) !important; border-radius: 2px !important; color: var(--ink); background: #f2f0ea !important; }

@media (max-width: 900px) {
  .hero-inner { align-items: center !important; }
  .hero-logo img { width: 170px !important; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-cards { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 580px) {
  nav { min-height: 64px; padding: 0 14px !important; }
  .nav-link { display: none; }
  .nav-shop { display: inline-flex; align-items: center; }
  .hero { min-height: 0 !important; padding-top: 100px !important; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4rem) !important; }
  .hero-logo { display: none !important; }
  .services-grid, .contact-cards { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr 1fr !important; }
  .why-item { border-bottom: 1px solid rgba(255,255,255,.18); }
  .updated-bar { top: 64px !important; }
}
