/* Vrt Stil — glavna stilska datoteka */

:root {
  --bg: oklch(0.97 0.012 90);
  --bg-alt: oklch(0.95 0.02 100);
  --bg-alt2: oklch(0.94 0.02 100);
  --text: oklch(0.22 0.02 90);
  --text-dim: oklch(0.4 0.02 90);
  --text-dim2: oklch(0.42 0.02 90);
  --text-soft: oklch(0.45 0.02 90);
  --border: oklch(0.9 0.01 90);
  --border-strong: oklch(0.88 0.01 90);
  --olive: oklch(0.42 0.08 140);
  --olive-dark: oklch(0.35 0.09 140);
  --olive-soft: oklch(0.92 0.02 140);
  --olive-soft2: oklch(0.9 0.02 140);
  --olive-text: oklch(0.3 0.09 140);
  --terra: oklch(0.5 0.11 40);
  --terra-text: oklch(0.5 0.09 40);
  --accent: var(--olive);
  --white: #fff;
  --footer-bg: oklch(0.2 0.02 90);
  --footer-text: oklch(0.9 0.01 90);
  --footer-text-dim: oklch(0.75 0.01 90);
  --footer-border: oklch(0.32 0.01 90);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-serif: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: oklch(0.42 0.08 140 / 0.25); }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container-blog { max-width: 860px; margin: 0 auto; padding: 0 32px; }
.container-legal { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.container-about { max-width: 1000px; margin: 0 auto; padding: 0 32px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 32px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--olive); display: flex; align-items: center; justify-content: center;
  color: var(--bg); font-family: var(--font-serif); font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 20px; letter-spacing: 0.2px; }
.brand-sub { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-soft); }

.main-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  font-size: 15px; font-weight: 600; cursor: pointer; padding: 6px 2px;
  border-bottom: 2px solid transparent; color: var(--text);
}
.main-nav a.active { color: var(--olive); border-bottom-color: var(--olive); }
.main-nav a:hover { color: var(--olive); }

.nav-toggle {
  display: none; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--white); font-size: 18px; cursor: pointer; align-items: center; justify-content: center;
}

.header-right { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; }
.cart-btn {
  position: relative; cursor: pointer; width: 38px; height: 38px; border-radius: 10px;
  background: oklch(0.93 0.01 90); border: none; display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.cart-count {
  position: absolute; top: -6px; right: -6px; background: var(--accent); color: white; font-size: 11px;
  font-weight: 700; border-radius: 50%; width: 19px; height: 19px; display: flex; align-items: center; justify-content: center;
}

/* HERO */
.hero {
  padding: 88px 32px 96px;
  background: linear-gradient(180deg, var(--bg), var(--bg-alt));
  text-align: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 20px; background: var(--olive-soft2);
  color: var(--olive-text); font-size: 13px; font-weight: 600; letter-spacing: 0.4px; margin-bottom: 22px;
}
.hero h1 { font-family: var(--font-serif); font-size: 52px; font-weight: 700; margin: 0 0 20px; line-height: 1.15; }
.hero p.lead { font-size: 19px; color: var(--text-dim); margin: 0 0 34px; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  padding: 15px 28px; border-radius: var(--radius-sm); border: none; font-size: 16px; font-weight: 700;
  cursor: pointer; display: inline-block;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-outline { border: 1px solid oklch(0.7 0.02 90); background: transparent; color: var(--text); font-weight: 600; }
.btn-outline:hover { background: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; border-radius: 8px; }
.btn-block { width: 100%; padding: 14px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; }

.hero-photo {
  max-width: 1000px; margin: 56px auto 0; height: 340px; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-alt2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* SECTION HEADINGS */
.section { padding: 72px 32px; }
.section-tight { padding: 48px 32px; }
.section-alt { background: var(--bg-alt2); }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--olive);
  text-align: center;
}
.section-title { font-family: var(--font-serif); font-size: 36px; margin: 10px 0 0; text-align: center; }
.section-head { text-align: center; margin-bottom: 44px; }
.page-head { text-align: center; margin-bottom: 44px; }
.page-head h1 { font-family: var(--font-serif); font-size: 40px; margin: 10px 0 16px; }
.page-head p { font-size: 16px; color: var(--text-dim2); max-width: 640px; margin: 0 auto; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.stat { text-align: center; padding: 20px 12px; }
.stat-value { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--olive); }
.stat-label { font-size: 14px; color: var(--text-dim); margin-top: 6px; }

/* CARDS */
.card {
  background: var(--white); border-radius: 16px; border: 1px solid var(--border); overflow: hidden;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }

.service-card { padding: 28px; cursor: pointer; }
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.icon-badge {
  width: 44px; height: 44px; border-radius: 10px; background: var(--olive-soft);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif);
  font-weight: 700; color: var(--olive-dark); margin-bottom: 16px; font-size: 15px;
}
.service-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 19px; margin: 0 0 8px; }
.service-card p { font-size: 14.5px; color: var(--text-dim2); margin: 0; }

.photo-card-img { height: 170px; background: var(--bg-alt2); overflow: hidden; }
.photo-card-img img { width: 100%; height: 100%; object-fit: cover; }
.photo-card-body { padding: 18px; }
.photo-card-loc { font-size: 12px; font-weight: 700; color: var(--terra-text); text-transform: uppercase; letter-spacing: 0.5px; }
.photo-card-title { font-family: var(--font-serif); font-weight: 600; font-size: 17px; margin-top: 6px; }

.testi-card { padding: 26px; }
.testi-stars { color: oklch(0.6 0.1 60); font-size: 15px; margin-bottom: 12px; }
.testi-text { font-size: 14.5px; color: oklch(0.3 0.02 90); margin-bottom: 16px; }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-loc { font-size: 12.5px; color: var(--text-soft); }

.cta-center { text-align: center; margin-top: 36px; }

/* PRODUCTS */
.product-card { overflow: hidden; }
.product-img { height: 150px; background: var(--bg-alt2); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 18px; }
.product-cat { font-size: 11.5px; font-weight: 700; color: var(--terra-text); text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.product-blurb { font-size: 13.5px; color: var(--text-soft); margin-bottom: 10px; }
.product-row { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 17px; font-weight: 700; color: var(--olive); }
.add-cart-btn {
  padding: 9px 16px; border-radius: 8px; border: none; background: oklch(0.93 0.01 90);
  font-weight: 600; font-size: 13px; cursor: pointer;
}
.add-cart-btn:hover { background: oklch(0.89 0.01 90); }

.filter-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-pill {
  padding: 9px 18px; border-radius: 20px; font-size: 13.5px; font-weight: 600; cursor: pointer;
  background: oklch(0.93 0.01 90); color: var(--text); border: none;
}
.filter-pill.active { background: var(--accent); color: white; }

.shop-note {
  background: var(--olive-soft); border-radius: 12px; padding: 16px 22px; font-size: 13.5px;
  color: var(--olive-text); text-align: center; margin-bottom: 36px;
}

/* SERVICES FULL PAGE */
.service-row { display: flex; gap: 36px; align-items: flex-start; margin-bottom: 56px; flex-wrap: wrap; }
.service-row-img { flex: 1 1 260px; min-width: 260px; height: 220px; border-radius: 16px; overflow: hidden; background: var(--bg-alt2); }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; }
.service-row-body { flex: 2 1 380px; min-width: 280px; }
.service-row-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.service-row-head .icon-badge { width: 36px; height: 36px; font-size: 14px; margin-bottom: 0; }
.service-row-head h2 { font-family: var(--font-serif); font-weight: 600; font-size: 24px; margin: 0; }
.service-row-body p.desc { font-size: 15px; color: oklch(0.35 0.02 90); margin: 0 0 14px; }
.bullets-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-soft); margin-bottom: 8px; }
.bullet-item { display: flex; gap: 10px; font-size: 14.5px; color: oklch(0.3 0.02 90); margin-bottom: 6px; }
.bullet-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--olive); margin-top: 8px; flex-shrink: 0; }

.process-box { background: var(--white); border-radius: var(--radius-lg); padding: 44px; border: 1px solid var(--border); margin-top: 24px; }
.process-box h2 { font-family: var(--font-serif); font-size: 26px; text-align: center; margin: 0 0 32px; }
.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.process-step { text-align: center; }
.process-num {
  width: 38px; height: 38px; border-radius: 50%; background: var(--olive); color: white; font-weight: 700;
  font-family: var(--font-serif); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.process-title { font-weight: 700; font-size: 14.5px; margin-bottom: 4px; }
.process-desc { font-size: 12.5px; color: var(--text-soft); }

/* PORTFOLIO */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.portfolio-grid.list-layout { display: flex; flex-direction: column; gap: 24px; }
.portfolio-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; }
.list-layout .portfolio-card { flex-direction: row; }
.portfolio-card .photo-card-img { height: 170px; }
.list-layout .portfolio-card .photo-card-img { height: auto; flex: 0 0 260px; }
.portfolio-card .photo-card-body { flex: 1; }
.portfolio-meta { font-size: 12px; font-weight: 700; color: var(--terra-text); text-transform: uppercase; letter-spacing: 0.5px; }
.portfolio-title { font-family: var(--font-serif); font-weight: 600; font-size: 18px; margin: 8px 0 8px; }
.portfolio-desc { font-size: 14px; color: var(--text-dim2); }

/* ABOUT */
.about-hero { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
.about-hero-img { flex: 1 1 320px; min-width: 280px; height: 260px; border-radius: 16px; overflow: hidden; background: var(--bg-alt2); }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-text { flex: 1 1 320px; min-width: 280px; }
.about-hero-text p { font-size: 15.5px; color: oklch(0.32 0.02 90); margin: 0 0 14px; }
.value-card { background: var(--white); border-radius: 14px; padding: 24px; border: 1px solid var(--border); text-align: center; }
.value-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 17px; margin: 0 0 8px; }
.value-card p { font-size: 13.5px; color: var(--text-soft); margin: 0; }
.team-photo { width: 100%; height: 150px; border-radius: 12px; overflow: hidden; margin-bottom: 10px; background: var(--bg-alt2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 14.5px; }
.team-role { font-size: 12.5px; color: var(--text-soft); }
.license-box { background: var(--olive-soft); border-radius: 14px; padding: 24px; text-align: center; font-size: 14px; color: var(--olive-text); }

/* BLOG */
.blog-post { background: var(--white); border-radius: 16px; padding: 26px; border: 1px solid var(--border); margin-bottom: 18px; }
.blog-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.blog-cat { font-size: 11.5px; font-weight: 700; color: var(--terra-text); text-transform: uppercase; }
.blog-date { font-size: 12px; color: oklch(0.55 0.02 90); }
.blog-title { font-family: var(--font-serif); font-weight: 600; font-size: 21px; margin-bottom: 10px; }
.blog-teaser { font-size: 14.5px; color: oklch(0.35 0.02 90); }
.blog-more { font-size: 14.5px; color: oklch(0.35 0.02 90); margin-top: 12px; padding-top: 12px; border-top: 1px solid oklch(0.92 0.01 90); display: none; }
.blog-more.open { display: block; }
.blog-toggle {
  margin-top: 14px; padding: 8px 16px; border-radius: 8px; border: 1px solid oklch(0.75 0.02 90);
  background: transparent; font-size: 13px; font-weight: 600; cursor: pointer;
}

/* CONTACT */
.contact-grid { display: flex; gap: 40px; flex-wrap: wrap; }
.contact-col { flex: 1 1 320px; min-width: 280px; }
.contact-item { margin-bottom: 22px; }
.contact-item .label { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.contact-item .value { font-size: 14.5px; color: var(--text-dim); }
.contact-item .value a { color: var(--olive); font-weight: 600; }
.map-photo { height: 200px; border-radius: 14px; overflow: hidden; background: var(--bg-alt2); position: relative; }
.map-photo img { width: 100%; height: 100%; object-fit: cover; }
.map-photo .map-pin {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.28); color: white; font-size: 14px; font-weight: 700; text-align: center; padding: 12px;
}
.contact-form-box { flex: 1 1 380px; min-width: 300px; background: var(--white); border-radius: 16px; padding: 32px; border: 1px solid var(--border); }
.contact-form-box h2 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; margin: 0 0 18px; }
.form-col { display: flex; flex-direction: column; gap: 14px; }
.form-col input, .form-col textarea {
  padding: 12px 14px; border-radius: 8px; border: 1px solid oklch(0.85 0.01 90); font-size: 14.5px;
  font-family: inherit; width: 100%;
}
.form-col textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--text-soft); }
.form-note a { color: var(--olive); text-decoration: underline; }
.form-error { font-size: 13px; color: oklch(0.5 0.18 30); background: oklch(0.95 0.05 30); border-radius: 8px; padding: 10px 12px; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.success-box { text-align: center; padding: 40px 10px; }
.success-icon { font-size: 34px; margin-bottom: 12px; color: var(--olive); }
.success-title { font-family: var(--font-serif); font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.success-text { font-size: 14px; color: var(--text-soft); }

/* LEGAL */
.legal-title { font-family: var(--font-serif); font-size: 34px; margin: 0 0 8px; }
.legal-updated { font-size: 13px; color: var(--text-soft); margin-bottom: 36px; }
.legal-section { margin-bottom: 26px; }
.legal-h { font-weight: 700; font-size: 16.5px; margin-bottom: 8px; }
.legal-p { font-size: 14.5px; color: oklch(0.34 0.02 90); white-space: pre-line; }

/* FOOTER */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 56px 32px 28px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 32px; margin-bottom: 36px; }
.footer-brand { font-family: var(--font-serif); font-weight: 700; font-size: 20px; margin-bottom: 10px; color: white; }
.footer-desc { font-size: 13.5px; color: var(--footer-text-dim); margin-bottom: 14px; }
.footer-col-title { font-weight: 700; font-size: 13.5px; margin-bottom: 14px; color: white; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-link { font-size: 14px; color: var(--footer-text-dim); margin-bottom: 9px; cursor: pointer; display: block; }
.footer-link:hover { color: white; }
.footer-line { font-size: 14px; color: var(--footer-text-dim); margin-bottom: 9px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--footer-border); font-size: 12.5px; color: oklch(0.6 0.01 90); text-align: center; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--footer-bg); color: white;
  padding: 18px 32px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner.hidden { display: none; }
.cookie-text { font-size: 13.5px; max-width: 640px; color: oklch(0.85 0.01 90); }
.cookie-text a { color: white; text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn-ghost { padding: 9px 18px; border-radius: 8px; border: 1px solid oklch(0.5 0.01 90); background: transparent; color: white; font-size: 13px; font-weight: 600; cursor: pointer; }
.cookie-btn-accent { padding: 9px 18px; border-radius: 8px; border: none; background: var(--accent); color: white; font-size: 13px; font-weight: 700; cursor: pointer; }

/* CART DRAWER */
.cart-overlay { position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,0.4); display: none; }
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: 380px; max-width: 92vw; background: white; z-index: 71;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15); padding: 28px; overflow-y: auto; display: flex; flex-direction: column;
  transition: right 0.25s ease;
}
.cart-drawer.open { right: 0; }
.cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.cart-head-title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; }
.cart-close { cursor: pointer; font-size: 20px; border: none; background: none; }
.cart-empty { text-align: center; padding: 40px 10px; color: var(--text-soft); font-size: 14.5px; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid oklch(0.92 0.01 90); }
.cart-item-img { width: 56px; height: 56px; border-radius: 8px; flex-shrink: 0; background: var(--bg-alt2); overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; }
.cart-item-name { font-size: 13.5px; font-weight: 600; }
.cart-item-price { font-size: 13px; color: var(--olive); font-weight: 700; margin-top: 2px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { width: 24px; height: 24px; border-radius: 6px; border: 1px solid oklch(0.8 0.01 90); background: white; cursor: pointer; font-size: 14px; }
.qty-val { font-size: 13.5px; font-weight: 600; }
.cart-remove { margin-left: auto; font-size: 12px; color: var(--text-soft); cursor: pointer; text-decoration: underline; border: none; background: none; }
.cart-footer { margin-top: auto; padding-top: 20px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.checkout-note { background: var(--olive-soft); border-radius: 10px; padding: 16px; text-align: center; font-size: 13.5px; color: var(--olive-text); }
.checkout-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.checkout-fields input {
  padding: 10px 12px; border-radius: 8px; border: 1px solid oklch(0.85 0.01 90); font-size: 13.5px; font-family: inherit;
}

/* MISC */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: white; padding: 8px 12px; border-radius: 8px; z-index: 100; }

@media (max-width: 900px) {
  .grid-3, .grid-4, .stats-grid, .footer-grid, .process-grid, .portfolio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 4px;
    order: 5; padding-top: 10px;
  }
  .main-nav.open { display: flex; }
  .hero h1 { font-size: 36px; }
  .hero p.lead { font-size: 16px; }
  .grid-3, .grid-4, .stats-grid, .footer-grid, .process-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .list-layout .portfolio-card { flex-direction: column; }
  .list-layout .portfolio-card .photo-card-img { flex: none; height: 170px; }
  .service-row { flex-direction: column; }
  .about-hero { flex-direction: column; }
  .contact-grid { flex-direction: column; }
  .section, .section-tight { padding: 48px 20px; }
  .container, .container-narrow, .container-blog, .container-legal, .container-about { padding: 0 20px; }
  .site-header { padding: 14px 20px; }
}
