:root{
  --bg: oklch(98% 0.004 230);
  --text: oklch(22% 0.02 250);
  --text-muted: oklch(45% 0.015 250);
  --text-dim: oklch(30% 0.02 250);
  --brand: oklch(55% 0.10 200);
  --brand-dark: oklch(42% 0.10 200);
  --brand-light: oklch(94% 0.03 200);
  --accent: oklch(68% 0.14 40);
  --accent-dark: oklch(55% 0.14 40);
  --navy: oklch(22% 0.02 250);
  --border: oklch(90% 0.012 230);
  --border-soft: oklch(94% 0.006 230);
  --section-alt: oklch(96% 0.006 230);
  --white: #fff;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  font-family:'Work Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
h1,h2,h3,h4,.brandfont{ font-family:'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif; }
h1,h2,h3,h4{ margin:0; }
a{ color:var(--brand-dark); }
a:hover{ color:var(--accent-dark); }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }
p{ margin:0; }

.container{ max-width:1200px; margin:0 auto; padding:0 20px; }

@keyframes fadeIn{ from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }
.fade-in{ animation:fadeIn 0.5s ease; }

/* Top bar */
.topbar{ background:var(--navy); color:oklch(95% 0.01 230); font-size:13px; }
.topbar .container{ padding:8px 20px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:6px; }
.topbar-left, .topbar-right{ display:flex; gap:18px; flex-wrap:wrap; }

/* Header */
.site-header{ position:sticky; top:0; z-index:50; background:var(--white); border-bottom:1px solid var(--border); }
.site-header .container{ padding:14px 20px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit; }
.brand-mark{ width:40px; height:40px; border-radius:10px; background:var(--brand); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:18px; }
.brand-name{ font-size:20px; font-weight:700; }
.brand-sub{ font-size:11px; color:var(--text-muted); margin-top:-2px; }

.nav-desktop{ display:flex; gap:2px; align-items:center; }
.nav-desktop a{ background:none; border:none; cursor:pointer; padding:10px 14px; border-radius:8px; font-size:14.5px; font-weight:500; color:var(--text-dim); text-decoration:none; display:inline-block; }
.nav-desktop a:hover{ background:var(--brand-light); color:var(--text-dim); }
.nav-desktop a.active{ color:var(--brand-dark); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.cart-btn{ position:relative; background:var(--brand-light); border:none; border-radius:8px; padding:10px 14px; cursor:pointer; font-weight:600; font-size:14px; color:var(--brand-dark); display:flex; align-items:center; gap:6px; text-decoration:none; }
.cart-badge{ background:var(--accent); color:#fff; border-radius:999px; min-width:18px; height:18px; font-size:11px; display:inline-flex; align-items:center; justify-content:center; padding:0 4px; }
.btn-cta{ background:var(--brand); color:#fff; border:none; border-radius:8px; padding:10px 18px; font-weight:600; font-size:14px; cursor:pointer; text-decoration:none; display:inline-block; }
.btn-cta:hover{ background:var(--brand-dark); color:#fff; }
.mobile-toggle{ display:none; background:none; border:1px solid var(--border); border-radius:8px; padding:8px 12px; cursor:pointer; font-size:18px; }

.mobile-menu{ display:none; border-top:1px solid var(--border); padding:8px 20px 14px; flex-direction:column; }
.mobile-menu a{ background:none; border:none; text-align:left; padding:10px 0; font-size:15px; font-weight:500; color:var(--text); border-bottom:1px solid var(--border-soft); text-decoration:none; }
.mobile-menu.open{ display:flex; }

@media (max-width:900px){
  .nav-desktop{ display:none; }
  .mobile-toggle{ display:inline-block; }
}

/* Buttons (generic) */
.btn{ border:none; border-radius:10px; padding:15px 26px; font-weight:700; font-size:15px; cursor:pointer; text-decoration:none; display:inline-block; }
.btn-primary{ background:var(--brand); color:#fff; }
.btn-primary:hover{ background:var(--brand-dark); color:#fff; }
.btn-secondary{ background:#fff; color:var(--text); border:1px solid var(--border); }
.btn-secondary:hover{ color:var(--text); }
.btn-small{ border:none; border-radius:8px; padding:10px 18px; font-weight:600; font-size:13.5px; cursor:pointer; }
.btn-small-primary{ background:var(--brand); color:#fff; }
.btn-small-primary:hover{ background:var(--brand-dark); color:#fff; }

/* Hero */
.hero{ padding:64px 0 56px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
.hero-badge{ display:inline-block; background:var(--brand-light); color:var(--brand-dark); font-weight:600; font-size:13px; padding:6px 12px; border-radius:999px; margin-bottom:18px; }
.hero h1{ font-size:46px; font-weight:800; line-height:1.1; margin:0 0 18px; }
.hero h1 span{ color:var(--brand); }
.hero p{ font-size:17px; color:var(--text-muted); max-width:520px; margin:0 0 28px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-media{ border-radius:20px; aspect-ratio:4/3; overflow:hidden; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }

@media (max-width:800px){
  .hero{ grid-template-columns:1fr; padding:40px 0; }
  .hero h1{ font-size:32px; }
}

/* USPs */
.usps{ background:var(--navy); }
.usps .container{ padding:26px 20px; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.usp-title{ color:#fff; font-weight:700; font-size:15px; }
.usp-sub{ font-size:12.5px; color:oklch(75% 0.01 230); margin-top:4px; }
@media (max-width:700px){ .usps .container{ grid-template-columns:repeat(2,1fr); } }

/* Section headers */
.section{ padding:64px 0; }
.section-alt{ background:var(--section-alt); }
.section-title{ font-size:30px; font-weight:700; margin:0 0 8px; text-align:center; }
.section-sub{ text-align:center; color:var(--text-muted); margin:0 0 36px; }

/* Services grid */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.service-card{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:26px; text-decoration:none; color:inherit; display:block; }
.service-mono{ width:46px; height:46px; border-radius:10px; background:var(--brand-light); color:var(--brand-dark); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:16px; margin-bottom:14px; }
.service-card h3{ font-size:17px; font-weight:700; margin:0 0 8px; }
.service-card p{ font-size:14px; color:var(--text-muted); margin:0 0 12px; }
.service-price{ font-size:13.5px; font-weight:700; color:var(--brand-dark); }
@media (max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .services-grid{ grid-template-columns:1fr; } }

/* Services page list */
.services-list{ display:flex; flex-direction:column; gap:16px; }
.service-row{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:26px; display:grid; grid-template-columns:60px 1fr auto; gap:20px; align-items:center; }
.service-row-mono{ width:56px; height:56px; border-radius:12px; background:var(--brand-light); color:var(--brand-dark); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:18px; }
.service-row h3{ font-size:19px; font-weight:700; margin:0 0 6px; }
.service-row p{ font-size:14.5px; color:var(--text-muted); margin:0; }
.service-row-price{ text-align:right; }
.service-row-price .price{ font-weight:800; font-size:16px; color:var(--brand-dark); margin-bottom:10px; }
@media (max-width:700px){ .service-row{ grid-template-columns:1fr; text-align:left; } .service-row-price{ text-align:left; } }

/* Steps */
.steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.step{ text-align:center; }
.step-n{ width:52px; height:52px; border-radius:50%; background:var(--brand); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:19px; margin:0 auto 14px; }
.step-title{ font-weight:700; font-size:15.5px; margin-bottom:6px; }
.step-desc{ font-size:13.5px; color:var(--text-muted); }
@media (max-width:700px){ .steps-grid{ grid-template-columns:repeat(2,1fr); } }

/* Reviews */
.reviews-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.reviews-grid.cols-2{ grid-template-columns:repeat(2,1fr); }
.review-card{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:22px; }
.review-stars{ color:var(--accent); font-size:15px; margin-bottom:10px; }
.review-text{ font-size:14px; color:var(--text-dim); margin:0 0 14px; }
.review-name{ font-weight:700; font-size:13.5px; }
.review-date{ font-size:12.5px; color:var(--text-muted); }
.review-foot{ display:flex; justify-content:space-between; font-size:12.5px; color:var(--text-muted); }
@media (max-width:900px){ .reviews-grid, .reviews-grid.cols-2{ grid-template-columns:1fr; } }

/* CTA band */
.cta-band{ background:var(--brand); padding:48px 20px; }
.cta-band-inner{ max-width:900px; margin:0 auto; text-align:center; color:#fff; }
.cta-band h2{ font-size:26px; font-weight:800; margin:0 0 10px; }
.cta-band p{ margin:0 0 22px; opacity:0.9; }
.cta-band .btn{ background:#fff; color:var(--brand-dark); }

/* Posts */
.posts-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.posts-grid.cols-2{ grid-template-columns:repeat(2,1fr); }
.post-card{ background:#fff; border:1px solid var(--border); border-radius:14px; overflow:hidden; text-decoration:none; color:inherit; display:block; }
.post-media{ aspect-ratio:16/9; overflow:hidden; }
.post-media img{ width:100%; height:100%; object-fit:cover; }
.post-body{ padding:18px; }
.post-body.large{ padding:20px; }
.post-date{ font-size:12px; color:var(--text-muted); margin-bottom:6px; }
.post-title{ font-weight:700; font-size:15px; }
.post-body.large .post-title{ font-size:16px; margin-bottom:8px; }
.post-excerpt{ font-size:13.5px; color:var(--text-muted); }
@media (max-width:900px){ .posts-grid, .posts-grid.cols-2{ grid-template-columns:1fr; } }

/* Pricing */
.pricing-group{ margin-bottom:30px; }
.pricing-group h3{ font-size:18px; font-weight:700; margin:0 0 12px; color:var(--brand-dark); }
.pricing-table{ background:#fff; border:1px solid var(--border); border-radius:12px; overflow:hidden; }
.pricing-row{ display:flex; justify-content:space-between; padding:13px 20px; border-bottom:1px solid var(--border-soft); font-size:14.5px; }
.pricing-row:last-child{ border-bottom:none; }
.pricing-row .price{ font-weight:700; }
.pricing-note{ background:var(--brand-light); border-radius:12px; padding:20px; font-size:14px; color:oklch(30% 0.05 200); }

/* Shop */
.shop-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.product-card{ background:#fff; border:1px solid var(--border); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; }
.product-media{ aspect-ratio:1/1; overflow:hidden; }
.product-media img{ width:100%; height:100%; object-fit:cover; }
.product-body{ padding:16px; display:flex; flex-direction:column; flex:1; }
.product-name{ font-weight:700; font-size:14.5px; margin-bottom:6px; }
.product-desc{ font-size:12.5px; color:var(--text-muted); margin-bottom:12px; flex:1; }
.product-foot{ display:flex; justify-content:space-between; align-items:center; }
.product-price{ font-weight:800; font-size:15px; color:var(--brand-dark); }
@media (max-width:900px){ .shop-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:500px){ .shop-grid{ grid-template-columns:1fr; } }

/* Cart */
.cart-list{ display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
.cart-item{ background:#fff; border:1px solid var(--border); border-radius:12px; padding:16px 18px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.cart-item-info{ flex:1; min-width:140px; }
.cart-item-name{ font-weight:700; font-size:14.5px; }
.cart-item-price{ font-size:13px; color:var(--text-muted); }
.qty-control{ display:flex; align-items:center; gap:8px; }
.qty-btn{ width:28px; height:28px; border-radius:6px; border:1px solid var(--border); background:#fff; cursor:pointer; }
.qty-val{ min-width:20px; text-align:center; font-weight:600; }
.line-total{ min-width:80px; text-align:right; font-weight:700; }
.remove-btn{ background:none; border:none; color:var(--accent-dark); cursor:pointer; font-size:13px; }
.cart-total{ background:#fff; border:1px solid var(--border); border-radius:12px; padding:20px; margin-bottom:24px; display:flex; justify-content:space-between; font-size:18px; font-weight:800; }
.cart-empty{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:36px; text-align:center; color:var(--text-muted); }
.cart-panel{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:26px; }
.cart-panel h3{ font-size:17px; font-weight:700; margin:0 0 16px; }
.cart-done{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:36px; text-align:center; }
.cart-done .check{ font-size:40px; margin-bottom:12px; }
.cart-done h2{ font-size:22px; font-weight:700; margin:0 0 8px; }
.cart-done p{ color:var(--text-muted); margin:0 0 18px; }

/* Forms */
.form-grid{ display:grid; gap:12px; }
.form-grid input, .form-grid textarea{ padding:12px 14px; border:1px solid var(--border); border-radius:8px; font-size:14px; font-family:inherit; width:100%; }
.form-grid textarea{ resize:vertical; }
.btn-submit{ margin-top:16px; width:100%; background:var(--brand); color:#fff; border:none; border-radius:8px; padding:14px; font-weight:700; font-size:15px; cursor:pointer; }
.btn-submit:hover{ background:var(--brand-dark); }
.form-note{ font-size:12px; color:var(--text-muted); margin:12px 0 0; }
.honeypot{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* About */
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; margin-bottom:40px; }
.about-media{ border-radius:16px; aspect-ratio:4/3; overflow:hidden; }
.about-media img{ width:100%; height:100%; object-fit:cover; }
.about-grid p{ color:var(--text-dim); font-size:15.5px; margin:0 0 14px; }
.stats-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:40px; }
.stat-card{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:24px; text-align:center; }
.stat-num{ font-size:30px; font-weight:800; color:var(--brand-dark); }
.stat-label{ font-size:13.5px; color:var(--text-muted); margin-top:4px; }
.values-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.value-card{ background:#fff; border:1px solid var(--border); border-radius:12px; padding:20px; }
.value-title{ font-weight:700; font-size:15px; margin-bottom:6px; color:var(--brand-dark); }
.value-desc{ font-size:13.5px; color:var(--text-muted); }
@media (max-width:800px){ .about-grid, .stats-grid, .values-grid{ grid-template-columns:1fr; } }

/* Contact */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.map-embed{ border-radius:14px; overflow:hidden; margin-bottom:20px; border:1px solid var(--border); }
.map-embed iframe{ width:100%; height:280px; border:0; display:block; }
.contact-info{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:24px; font-size:14.5px; line-height:2; }
.contact-sent{ background:#fff; border:1px solid var(--border); border-radius:14px; padding:26px; text-align:center; }
.contact-sent .check{ font-size:32px; margin-bottom:10px; }
.faq-list{ display:flex; flex-direction:column; gap:8px; }
.faq-item{ background:#fff; border:1px solid var(--border); border-radius:10px; padding:14px 16px; cursor:pointer; }
.faq-q{ font-weight:600; font-size:14px; display:flex; justify-content:space-between; align-items:center; }
.faq-a{ font-size:13.5px; color:var(--text-muted); margin-top:8px; display:none; }
.faq-item.open .faq-a{ display:block; }
@media (max-width:800px){ .contact-grid{ grid-template-columns:1fr; } }

/* Legal */
.legal-section{ margin-bottom:20px; }
.legal-section h3{ font-size:16px; font-weight:700; margin:0 0 8px; }
.legal-section p{ font-size:14.5px; color:var(--text-dim); margin:0; }

/* Blog post */
.back-link{ background:none; border:none; color:var(--brand-dark); cursor:pointer; font-size:14px; margin-bottom:20px; padding:0; display:inline-block; text-decoration:none; }
.post-hero{ border-radius:14px; aspect-ratio:16/9; overflow:hidden; margin-bottom:26px; }
.post-hero img{ width:100%; height:100%; object-fit:cover; }
.post-content p{ font-size:15.5px; color:var(--text-dim); margin:0 0 16px; }

/* Footer */
.site-footer{ background:var(--navy); color:oklch(85% 0.01 230); margin-top:40px; }
.footer-grid{ max-width:1200px; margin:0 auto; padding:48px 20px 24px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; }
.footer-brand{ font-size:20px; font-weight:700; color:#fff; margin-bottom:10px; }
.footer-about{ font-size:13.5px; color:oklch(70% 0.01 230); max-width:280px; }
.footer-col-title{ font-weight:700; color:#fff; margin-bottom:12px; font-size:14px; }
.footer-links{ display:flex; flex-direction:column; gap:8px; font-size:13.5px; }
.footer-links a{ color:oklch(80% 0.01 230); text-decoration:none; }
.footer-contact{ font-size:13.5px; color:oklch(80% 0.01 230); line-height:1.9; }
.footer-bottom{ border-top:1px solid oklch(32% 0.02 250); padding:16px 20px; text-align:center; font-size:12px; color:oklch(60% 0.01 230); }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:500px){ .footer-grid{ grid-template-columns:1fr; } }

/* Cookie banner */
.cookie-banner{ position:fixed; bottom:0; left:0; right:0; background:var(--navy); color:#fff; padding:18px 20px; z-index:100; display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; }
.cookie-banner span{ font-size:13.5px; max-width:640px; }
.cookie-banner a{ color:oklch(75% 0.03 200); }
.cookie-actions{ display:flex; gap:10px; }
.btn-cookie-accept{ background:var(--brand); color:#fff; border:none; border-radius:8px; padding:10px 18px; font-weight:700; font-size:13.5px; cursor:pointer; }
.btn-cookie-decline{ background:none; border:1px solid oklch(50% 0.01 230); color:#fff; border-radius:8px; padding:10px 18px; font-weight:600; font-size:13.5px; cursor:pointer; }

/* Page header (interior pages) */
.page-header{ padding:56px 0 0; }
.page-title{ font-size:34px; font-weight:800; margin:0 0 10px; }
.page-title.small{ font-size:30px; }
.page-lead{ color:var(--text-muted); max-width:640px; margin:0 0 36px; }
.narrow{ max-width:1000px; }
.narrower{ max-width:800px; }
.narrowest{ max-width:760px; }
