:root{
  /* Backgrounds */
  --bg:#F1ECE6;        /* siltāks, wood-tint fons */
  --card:#FFFFFF;     /* Kartes / sekcijas */

  /* Text */
  --text:#1F1F1F;     /* Galvenais teksts */
  --muted:#7E857F;    /* Palīgteksts */

  /* Lines / borders */
  --line:#E6DED6;     /* Smalkas līnijas */

  /* Brand accents */
  --acc:#2F5D50;      /* TIMBRIC zaļais (CTA, linki) */
  --acc2:#1F3F36;     /* Tumšāks zaļais (hover, footer) */
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

.header{
 background-color: var(--bg);   /* #F5F7F6 */
  border-bottom: 1px solid var(--line);
  position: sticky;              /* optional, bet ļoti labi */
  top: 0;
  z-index: 100;
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.12em;
  color: var(--text);
  text-decoration:none;
}
.logo-svg{
  height: 48px;
  width: auto;
  display:block;
}
@media (max-width:900px){
  .logo-svg{ height: 36px; }
}
.logo.small{letter-spacing:.10em;font-size:14px}
.menu{display:flex;gap:14px;align-items:center;flex-wrap:wrap}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  background:var(--acc);
  border:1px solid var(--acc2);
  color:#fff;
  text-decoration:none;
  font-weight:700;
}
.btn:hover{
  background: var(--acc2);
}

.btn.small{padding:8px 12px;border-radius:10px;font-size:14px}
.btn.secondary{background:transparent;border:1px solid #2a3a34}
button.btn{cursor:pointer;color:inherit}

.hero{padding:56px 0;border-bottom:1px solid var(--line)}
.hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:22px;align-items:center}
.kicker{color:var(--muted);margin:0 0 10px;font-size:13px;letter-spacing:.06em;text-transform:uppercase}

h1{font-size:40px;line-height:1.12;margin:0 0 12px}
h2{font-size:26px;margin:0 0 12px}
p{color:var(--muted);margin:0 0 16px}
.lead{max-width:720px}

.cta{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0 16px}
.bullets{margin:0;padding-left:18px;color:var(--muted)}
.bullets li{margin:6px 0}

.section{padding:46px 0;border-bottom:1px solid var(--line)}
.section.alt{background:var(--card); /* #FFFFFF */}

.section-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;flex-wrap:wrap}
.muted{color:var(--muted)}

.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
}
.card h3{margin:0 0 8px}
.mini{margin:10px 0 0;padding-left:18px;color:var(--muted)}
.mini li{margin:6px 0}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:14px;align-items:start}
.spec{margin:0 0 14px;padding-left:18px;color:var(--muted)}
.spec li{margin:6px 0}

.hero-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
  position:relative;
}
.placeholder,.ph{
  display:flex;align-items:center;justify-content:center;
  min-height:220px;
  border-radius:12px;
  border:1px dashed #2a3a34;
  color:#94a59b;
  text-align:center;
  padding:12px;
}
.hero-badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px}
.badge{
  font-size:12px;
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #2a3a34;
  background:rgba(255,255,255,.02);
}
.subnote{margin-top:10px;color:var(--muted);font-size:13px}

.trust{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:16px}
.trust-item{display:flex;gap:10px;align-items:flex-start;border:1px solid var(--line);border-radius:14px;padding:12px;background:rgba(255,255,255,.02)}
.trust-num{width:28px;height:28px;display:flex;align-items:center;justify-content:center}
.trust-title{font-weight:700}
.trust-text{color:var(--muted);font-size:13px;margin-top:2px}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.note{
  margin-top:14px;
  color:var(--muted);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background:rgba(255,255,255,.02);
}

.callout{
  margin-top:14px;
  border:1px solid #2a3a34;
  background:rgba(26,42,36,.35);
  border-radius:14px;
  padding:12px;
}
.callout-title{font-weight:800;margin-bottom:4px}
.callout-text{color:var(--muted)}

.banner{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px;
  border-radius:16px;
  border:1px solid #2a3a34;
  background:rgba(26,42,36,.35);
}
.banner-title{font-weight:800}
.banner-text{color:var(--muted);margin-top:2px}

.steps{margin:0;padding-left:18px;color:var(--muted)}
.steps li{margin:10px 0}

.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}

.faq{display:grid;gap:10px;margin-top:10px}
.faq-item{
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--card);
  padding:10px 12px;
}
.faq-item summary{cursor:pointer;font-weight:700}
.faq-body{color:var(--muted);margin-top:8px}

.form{
  margin-top:12px;
  border:1px solid var(--line);
  background:var(--card);
  border-radius:16px;
  padding:16px;
}
label{display:block;color:var(--muted);font-size:14px}
input,select,textarea{
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #2a3a34;
  background:#0b0f0e;
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}
.form-actions{display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap;margin-top:12px}
.small{font-size:13px}
.hidden{display:none}

.footer{padding:22px 0}
.footer{
  padding:22px 0;
  background-color: var(--acc2); /* TIMBRIC tumšais zaļais */
  color: #FFFFFF;
}
/* FOOTER LINKI */
.footer a{
  color:#FFFFFF;
  opacity:0.9;
  text-decoration:none;
}

.footer a:hover{
  opacity:1;
}

/* 3️⃣ MUTED TEKSTS FOOTERĪ */
.footer .muted{
  color:rgba(255,255,255,.75);
}
.footer-grid{display:grid;grid-template-columns:1fr auto auto;gap:14px;align-items:center}
.footer-links{display:flex;gap:12px;flex-wrap:wrap}

@media (max-width:900px){
  .hero-grid,.two-col{grid-template-columns:1fr}
  .cards,.gallery,.trust,.grid-2{grid-template-columns:1fr}
  h1{font-size:32px}
  .footer-grid{grid-template-columns:1fr;gap:10px}
}

/* =========================
   MOBILE MENU (DRAWER)
   ========================= */

.burger{
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  cursor:pointer;
  border-radius:12px;
}

.burger span{
  display:block;
  width:22px;
  height:2px;
  background:#1F1F1F;
  margin:5px auto;
  border-radius:2px;
}

/* Backdrop */
.drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:999;
}

/* Drawer */
.drawer{
  position:fixed;
  top:0;
  right:0;
  width:min(86vw, 360px);
  height:100vh;
  background:#F5F7F6;
  z-index:1000;
  transform:translateX(100%);
  transition:transform .25s ease;
  box-shadow:-12px 0 30px rgba(0,0,0,.18);
  padding:18px 16px;
}

.drawer.open{
  transform:translateX(0);
}

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}

.drawer-logo{
  font-weight:800;
  letter-spacing:.12em;
}

.drawer-close{
  border:0;
  background:transparent;
  font-size:22px;
  cursor:pointer;
  width:44px;
  height:44px;
  border-radius:12px;
}

.drawer-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.drawer-nav a{
  padding:12px 10px;
  border-radius:12px;
  text-decoration:none;
  color:#1F1F1F;
  font-weight:600;
}

.drawer-nav a:hover{
  background:rgba(47,93,80,.08);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px){
  .menu{ display:none; }
  .burger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
}

/* =========================
   TIMBRIC BRAND POLISH (WOOD / PREMIUM)
   Ielīmē style.css beigās
   ========================= */

/* Globālā “premium” sajūta */
body{
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Konsekventi virsraksti */
h1, h2, h3{
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}
h2{ margin: 0 0 10px; }
h3{ margin: 0 0 8px; }

.lead{
  color: var(--muted);
  max-width: 62ch;
}

/* Linki */
a{
  color: var(--acc);
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sekcijas – vairāk “elpas” */
.section{
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.section.alt{
  background: var(--card);
}

/* Kartes – siltas, premium */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.card p{
  color: var(--muted);
}

/* Pogas – vienots CTA stils */
.btn{
  background: var(--acc);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 22px rgba(47,93,80,.18);
}
.btn:hover{
  background: var(--acc2);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(47,93,80,.14);
}

/* Secondary poga – “wood/premium” */
.btn.secondary{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.secondary:hover{
  background: rgba(139,106,79,.10); /* wood tint */
  border-color: rgba(139,106,79,.25);
  transform: translateY(-1px);
}

/* Focus (pieejamība) – lai klaviatūrai redzams */
:focus-visible{
  outline: 3px solid rgba(47,93,80,.35);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Formas – premium */
input, select, textarea{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  background: #fff;
  color: var(--text);
}
input:focus, select:focus, textarea:focus{
  outline: none;
  border-color: rgba(47,93,80,.55);
  box-shadow: 0 0 0 4px rgba(47,93,80,.12);
}

/* Header – gaišs, premium */
.header{
  background: rgba(241,236,230,.85); /* siltāks stikla efekts */
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

/* Footer – tumšais zaļais */
.footer{
  background: var(--acc2);
  color: #fff;
}
.footer a{
  color: #fff;
  opacity: .92;
}
.footer a:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer .muted{
  color: rgba(255,255,255,.72);
}

/* Mobilais drawer – lai saskan ar siltumu */
.drawer{
  background: var(--bg);
  color: var(--text);
}

/* Mazliet lielāki tap target uz mobilā */
@media (max-width: 900px){
  .section{ padding: 44px 0; }
  .btn{ width: 100%; }
  .drawer-nav a{ padding: 14px 12px; }
}


/* =========================
   HERO – FULL SCREEN (GRID + IMG)
========================= */

.hero{
  min-height: 100vh;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

/* lai sticky header nesēž virsū */
.header{ position: sticky; top: 0; z-index: 100; }
.hero{ padding-top: 96px; } /* ja header ~80px */

/*.hero-grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
  width: 100%;
}
.hero-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  position: relative;
}
.hero-img{
  width: 100%;
  height: min(72vh, 680px); /* ✅ stabils “landing” izmērs */
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
*/

.hero-badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero{ padding-top: 84px; align-items: flex-start; }
  .hero-img{ height: 42vh; }
}


/* MOBILE */
@media (max-width: 768px){
  .hero{
    min-height: 100svh;        /* pareizi mobile */
    padding-top: 84px;
  }

  .hero-card{
    height: 42vh;
    border-radius: 16px;
  }
}

/* =========================
   HERO – FULL WIDTH + TEXT ON IMAGE (FINAL)
========================= */

/* Ja header augstums atšķiras, maini šeit */
:root{ --header-h: 76px; }

.hero{
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;

  /* FULL-WIDTH bilde */
  background: url("/img/hero_orig.jpg") center/cover no-repeat;
  border-bottom: 1px solid var(--line);
  color: #fff;
}

/* Overlay lasāmībai */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.30) 45%,
    rgba(0,0,0,.08) 75%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

/* Saturs virs overlay */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 18px 0;
}

.hero .kicker,
.hero p,
.hero .bullets,
.hero .trust-text{
  color: rgba(255,255,255,.86);
}

.hero h1{
  color: #fff;
  text-shadow: 0 10px 26px rgba(0,0,0,.35);
}

/* Trust uz bildes */
.hero .trust-item{
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}

/* Secondary poga uz tumša fona */
.hero .btn.secondary{
  color: #fff;
  border-color: rgba(255,255,255,.35);
}
.hero .btn.secondary:hover{
  background: rgba(255,255,255,.10);
}

/* Mobile */
@media (max-width: 900px){
  :root{ --header-h: 68px; }

  .hero{
    min-height: calc(100svh - var(--header-h));
    align-items: flex-start;
    padding-top: 14px;
  }

  .hero-content{
    max-width: 100%;
  }

  .hero .trust{
    grid-template-columns: 1fr;
  }
}
.lang{ display:flex; gap:10px; align-items:center; }
.lang-link{ font-weight:700; font-size:14px; opacity:.8; }
.lang-link:hover{ opacity:1; }
.lang-sep{ opacity:.35; }
