:root{
  /* Wix vibe */
  --bg:#f7f3ea;
  --text:#10221b;
  --muted: rgba(16,34,27,.70);
  --line: rgba(16,34,27,.25);
  --line-strong: rgba(16,34,27,.45);

  --cta:#0f2a22;
  --cta-text:#fff;
  --accent:#dff57b;
  --accent-text:#10221b;

  --container:1180px;

  --font-body: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-title: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
}

* { 
  box-sizing:border-box; 
  scrollbar-width: none; 
}

* ::-webkit-scrollbar {
    display: none; 
}

html{
  height:100%;
  overflow-x: hidden;
}

body{
  height:100%;
  margin:0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height:1.65;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
  overflow-x: hidden;
}

