@import url('fonts.css');

:root {
  --bg: oklch(98% 0.004 60);
  --text: oklch(20% 0.01 60);
  --dark: oklch(16% 0.006 55);
  --dark2: oklch(20% 0.008 55);
  --dark3: oklch(28% 0.01 55);
  --accent: oklch(62% 0.15 45);
  --accent-hover: oklch(68% 0.15 45);
  --link-hover: oklch(56% 0.15 45);
  --blue: oklch(62% 0.15 240);
  --surface: oklch(99% 0.002 60);
  --border: oklch(90% 0.006 55);
  --border-light: oklch(88% 0.006 55);
  --border-mid: oklch(85% 0.006 55);
  --muted: oklch(42% 0.01 55);
  --muted-2: oklch(45% 0.01 55);
  --muted-3: oklch(35% 0.01 55);
  --muted-4: oklch(30% 0.01 55);
  --muted-5: oklch(50% 0.01 55);
  --muted-6: oklch(52% 0.01 55);
  --muted-7: oklch(40% 0.01 55);
  --panel: oklch(94% 0.006 55);
  --nav-hover: oklch(28% 0.02 55);
  --white-ish: oklch(96% 0.004 60);
  --footer-text: oklch(88% 0.006 55);
  --footer-link: oklch(75% 0.006 55);
  --footer-sub: oklch(70% 0.006 55);
  --footer-copy: oklch(60% 0.006 55);
  --success-bg: oklch(96% 0.03 145);
  --success-border: oklch(80% 0.06 145);
  --success-text: oklch(30% 0.05 145);
  --danger: oklch(55% 0.15 30);
  --placeholder: oklch(55% 0.01 60);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  line-height: 1.55;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }
::placeholder { color: var(--placeholder); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Oswald', sans-serif; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; }
.container-md { max-width: 1000px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }
.container-blog { max-width: 1100px; margin: 0 auto; }
.container-form { max-width: 800px; margin: 0 auto; }
.container-text { max-width: 760px; margin: 0 auto; }
.container-post { max-width: 720px; margin: 0 auto; }
.container-legal { max-width: 700px; margin: 0 auto; }

/* Header */
.site-header {
  background: var(--dark);
  color: var(--white-ish);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--accent);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  border: 5px solid var(--accent);
  background: var(--dark);
  position: relative; flex-shrink: 0;
}
.brand-mark::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--white-ish); transform: translate(-50%, -50%);
}
.brand-name {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--white-ish);
}
.brand-name span { color: var(--accent); }

.main-nav { display: flex; flex-wrap: wrap; gap: 2px; }
.main-nav a {
  padding: 9px 13px; background: transparent; color: inherit;
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.4px; border: none;
  cursor: pointer; border-radius: 4px; text-decoration: none; display: inline-block;
}
.main-nav a:hover, .main-nav a:focus-visible { background: var(--nav-hover); color: var(--white-ish); text-decoration: none; }
.main-nav a.active { background: var(--nav-hover); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-btn {
  color: var(--white-ish); font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 14px; background: var(--nav-hover); padding: 9px 14px;
  border-radius: 4px; text-decoration: none;
}
.phone-btn:hover { text-decoration: none; color: var(--white-ish); }
.cart-btn {
  position: relative; padding: 9px 14px; background: var(--accent);
  color: var(--dark); border: none; border-radius: 4px;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px;
  text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block;
}
.cart-btn:hover { text-decoration: none; color: var(--dark); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--dark), var(--dark2)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 22px);
  background-blend-mode: normal;
  color: var(--white-ish);
  padding: 72px 24px;
}
.hero-inner { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.hero-copy { flex: 1 1 420px; min-width: 0; }
.hero-badge {
  display: inline-block; background: var(--accent); color: var(--dark);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 12px;
  border-radius: 4px; margin-bottom: 18px;
}
.hero-title { font-family: 'Oswald', sans-serif; font-size: 46px; font-weight: 700; line-height: 1.1; margin: 0 0 18px; }
.hero-text { font-size: 17px; color: oklch(88% 0.006 55); max-width: 520px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media {
  flex: 1 1 320px; min-width: 0; height: 280px; border-radius: 8px; overflow: hidden;
  border: 1px solid oklch(32% 0.01 55);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Buttons */
.btn {
  padding: 15px 26px; border: none; border-radius: 5px;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 15px;
  text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: var(--accent-hover); color: var(--dark); }
.btn-outline { background: transparent; color: var(--white-ish); border: 2px solid oklch(40% 0.01 55); }
.btn-outline:hover { color: var(--white-ish); }
.btn-dark { background: var(--dark); color: var(--white-ish); }
.btn-dark:hover { color: var(--white-ish); background: var(--dark3); }
.btn-sm { padding: 8px 14px; font-size: 12px; border-radius: 4px; }

/* Trust badges */
.trust-bar { padding: 20px 24px; background: var(--panel); border-bottom: 1px solid var(--border-light); }
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-around; text-align: center; }
.trust-item { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: var(--muted-4); flex: 1 1 180px; }

/* Sections */
.section { padding: 70px 24px; }
.section-tight { padding: 56px 24px 20px; }
.section-panel { padding: 60px 24px; background: var(--panel); }
.section-dark { padding: 64px 24px; background: var(--dark); color: var(--white-ish); text-align: center; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 30px; font-weight: 700; text-align: center; margin: 0 0 8px; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 40px; }
.eyebrow {
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.page-title { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; margin: 0 0 12px; }
.page-lede { color: var(--muted); max-width: 640px; margin: 0 0 40px; }

/* Grids */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.grid-wide { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.grid-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
.grid-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.grid-faq { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }

/* Service cards */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 26px; display: flex; flex-direction: column; gap: 12px;
}
.card-lg { padding: 28px; gap: 14px; }
.service-icon { width: 44px; height: 44px; border-radius: 50%; border: 4px solid var(--accent); position: relative; }
.service-icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; border-radius: 50%; background: inherit; border-color: inherit; transform: translate(-50%, -50%); background: currentColor; }
.service-icon.blue { border-color: var(--blue); color: var(--blue); }
.service-icon.orange { border-color: var(--accent); color: var(--accent); }
.card h3 { font-size: 18px; font-weight: 600; margin: 0; }
.card p { font-size: 14px; color: var(--muted); margin: 0; flex: 1; }
.card-price { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; color: var(--accent); }
.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 12px; }

/* Service areas */
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-chip {
  background: var(--surface); border: 1px solid var(--border-light); padding: 9px 18px;
  border-radius: 30px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
}

/* Testimonials */
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 24px; }
.stars { color: var(--accent); font-size: 15px; margin-bottom: 10px; }
.testimonial p { font-size: 14px; color: var(--muted-3); margin: 0 0 14px; font-style: italic; }
.testimonial .name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; }
.testimonial .loc { font-size: 12px; color: var(--muted-5); }

/* Product / blog cards */
.media-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.media-thumb { height: 130px; overflow: hidden; }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.media-thumb-sm { height: 120px; overflow: hidden; }
.media-thumb-sm img { width: 100%; height: 100%; object-fit: cover; }
.media-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.media-body-sm { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat-label { font-size: 11px; font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; color: var(--accent); letter-spacing: 0.4px; }
.product-row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.price-big { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 17px; }
.date-label { font-size: 12px; color: var(--muted-6); }
.read-more { align-self: flex-start; border: none; background: none; color: var(--accent); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; padding: 0; margin-top: 4px; }

/* Pricing table */
.price-table { border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; }
.price-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--dark); color: white;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px; text-transform: uppercase; padding: 14px 18px;
}
.price-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 14px 18px; font-size: 14px; }
.price-row:hover { background: var(--white-ish); }
.price-row .svc { font-weight: 500; }
.price-row div:not(.svc) { color: var(--muted-3); }
.price-note { font-size: 13px; color: var(--muted-6); margin-top: 20px; }

/* About */
.stat-box { text-align: center; background: var(--panel); border-radius: 8px; padding: 22px; }
.stat-value { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted-7); margin-top: 4px; }
.value-box { border: 1px solid var(--border-light); border-radius: 8px; padding: 18px; }
.value-box h3 { font-family: 'Oswald', sans-serif; font-size: 15px; margin: 0 0 6px; }
.value-box p { font-size: 13px; color: var(--muted-2); margin: 0; }

/* Forms */
.form-stack { display: flex; flex-direction: column; gap: 12px; }
.form-stack input, .form-stack textarea {
  padding: 12px 14px; border: 1px solid var(--border-mid); border-radius: 5px; font-size: 14px; font-family: inherit; width: 100%;
}
.form-stack textarea { resize: vertical; }
.form-note { font-size: 11px; color: var(--muted-6); margin: 4px 0 0; }
.alert-success {
  background: var(--success-bg); border: 1px solid var(--success-border); border-radius: 8px;
  padding: 20px; margin-bottom: 20px; color: var(--success-text); font-size: 14px;
}
.alert-success.center { text-align: center; padding: 28px; }
.alert-success h2 { font-family: 'Oswald', sans-serif; font-size: 22px; margin: 0 0 10px; color: var(--success-text); }
.alert-success p { color: var(--muted-3); margin: 0 0 16px; }
.field-error { border-color: var(--danger) !important; }

/* Contact layout */
.contact-grid { display: flex; flex-wrap: wrap; gap: 40px; }
.contact-form-col { flex: 1 1 320px; min-width: 0; }
.contact-info-col { flex: 1 1 280px; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.map-box {
  height: 180px; border-radius: 8px; overflow: hidden;
  background: repeating-linear-gradient(45deg, var(--border), var(--border) 10px, var(--panel) 10px, var(--panel) 20px);
  display: flex; align-items: center; justify-content: center;
}
.map-box span { font-family: 'Courier New', monospace; font-size: 12px; color: var(--muted-6); text-align: center; }
.info-list { font-size: 14px; color: var(--muted-4); display: flex; flex-direction: column; gap: 8px; }

/* Cart */
.cart-item { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.cart-thumb { width: 50px; height: 50px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-name { font-weight: 600; font-size: 14px; }
.cart-price { font-size: 13px; color: var(--muted-5); }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--border-mid); background: white; border-radius: 4px; cursor: pointer; }
.qty-val { min-width: 20px; text-align: center; font-weight: 600; }
.line-total { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; min-width: 70px; text-align: right; }
.remove-link { border: none; background: none; color: var(--danger); cursor: pointer; font-size: 13px; }
.cart-summary { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 2px solid var(--border-mid); margin-top: 8px; }
.cart-total-label { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; }
.cart-total-value { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--accent); }
.cart-empty { text-align: center; padding: 40px 0; color: var(--muted-2); }

/* Footer */
.site-footer { background: var(--dark); color: var(--footer-text); padding: 48px 24px 24px; margin-top: 40px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; }
.footer-col { flex: 1 1 220px; min-width: 0; }
.footer-col.narrow { flex: 1 1 160px; }
.footer-heading { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; color: white; margin-bottom: 12px; }
.footer-brand { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 13px; color: var(--footer-sub); margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.footer-links a { color: var(--footer-link); text-decoration: none; }
.footer-links a:hover { color: white; text-decoration: none; }
.footer-contact { font-size: 13px; color: var(--footer-link); display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { max-width: 1200px; margin: 32px auto 0; border-top: 1px solid var(--dark3); padding-top: 18px; font-size: 12px; color: var(--footer-copy); text-align: center; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); color: oklch(92% 0.006 55);
  padding: 16px 24px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  z-index: 100; border-top: 2px solid var(--accent);
}
.cookie-banner p { font-size: 13px; margin: 0; flex: 1 1 280px; }
.cookie-banner a { color: oklch(70% 0.15 45); }
.cookie-accept { padding: 10px 20px; background: var(--accent); color: var(--dark); border: none; border-radius: 5px; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; white-space: nowrap; }

/* Legal pages */
.legal-updated { font-size: 14px; color: var(--muted-3); margin-bottom: 16px; }
.legal-body h1 { font-family: 'Oswald', sans-serif; font-size: 30px; font-weight: 700; margin: 0 0 24px; }
.legal-body h3 { font-family: 'Oswald', sans-serif; font-size: 17px; margin: 24px 0 8px; }
.legal-body p { font-size: 15px; color: var(--muted-4); margin: 0 0 14px; }
.legal-body .info-list { margin-top: 4px; }

/* Blog post */
.back-link { border: none; background: none; color: var(--accent); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; padding: 0; margin-bottom: 20px; display: inline-block; }
.post-hero { border-radius: 8px; overflow: hidden; margin: 20px 0 24px; }
.post-hero img { width: 100%; max-height: 340px; object-fit: cover; }
.post-title { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; margin: 8px 0 24px; }
.post-body p { font-size: 16px; color: oklch(30% 0.01 55); margin: 0 0 16px; }

/* 404 */
.notfound { padding: 100px 24px; text-align: center; }
.notfound h1 { font-family: 'Oswald', sans-serif; font-size: 72px; margin: 0; color: var(--accent); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--accent); color: var(--dark);
  padding: 10px 16px; z-index: 200; font-family: 'Oswald', sans-serif; font-weight: 700;
}
.skip-link:focus { left: 10px; top: 10px; }

@media (max-width: 640px) {
  .hero-title { font-size: 32px; }
  .price-head, .price-row { grid-template-columns: 1.6fr 1fr 1fr; font-size: 12px; padding: 10px 12px; }
  .section, .section-tight { padding: 40px 16px; }
  .site-header { padding: 12px 16px; }
}
